home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00255_Script_Scroll < prev    next >
Text File  |  1999-02-25  |  1KB  |  46 lines

  1.  
  2. on scroll
  3.   if the mouseh < 30 then
  4.     scrollb
  5.     cursor [268]
  6.   else
  7.     scrollf
  8.   end if
  9.   
  10. end
  11.  
  12. on scrollb
  13.   set the loch of sprite 24 = the loch of sprite 24 + 12
  14.   set the loch of sprite 8 = the loch of sprite 8 + 10
  15.   
  16.   set the loch of sprite 25 = the loch of sprite 25 + 5
  17.   set the loch of sprite 26 = the loch of sprite 26 + 7.5
  18.   set the loch of sprite 27 = the loch of sprite 27 + 10
  19.   set the loch of sprite 28 = the loch of sprite 28 + 5
  20.   set the loch of sprite 29 = the loch of sprite 29 + 5
  21.   set the loch of sprite 35 = the loch of sprite 35 + 7.5
  22.   set the loch of sprite 31 = the loch of sprite 31 + 10
  23.   
  24.   set the loch of sprite 33 = the loch of sprite 33 + 15
  25.   
  26.   cursor - 1 
  27. end
  28.  
  29.  
  30. on scrollf
  31.   set the loch of sprite 24 = the loch of sprite 24 - 12
  32.   set the loch of sprite 8 = the loch of sprite 8 - 10
  33.   
  34.   set the loch of sprite 25 = the loch of sprite 25 - 5
  35.   set the loch of sprite 26 = the loch of sprite 26 - 7.5
  36.   set the loch of sprite 27 = the loch of sprite 27 - 10
  37.   set the loch of sprite 28 = the loch of sprite 28 - 5
  38.   set the loch of sprite 29 = the loch of sprite 29 - 5
  39.   set the loch of sprite 35 = the loch of sprite 35 - 7.5
  40.   set the loch of sprite 31 = the loch of sprite 31 - 10
  41.   
  42.   set the loch of sprite 33 = the loch of sprite 33 - 15
  43.   cursor - 1
  44.   
  45. end
  46.